forked from Khan/aphrodite
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.97 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "aphrodite",
"version": "0.6.0",
"description": "Inline styles in JS that just work (TM)",
"keywords": [
"css",
"react",
"inline-styles"
],
"main": "lib/index.js",
"scripts": {
"test": "npm run coverage",
"coverage": "nyc --check-coverage --lines 100 --branches 100 npm run tests",
"tests": "mocha --compilers js:babel/register tests",
"tests:watch": "mocha --watch --compilers js:babel/register tests",
"prebuild": "rimraf dist lib",
"build": "npm-run-all --parallel build:*",
"watch:build": "npm-run-all --parallel watch:build:*",
"build:main": "babel -d lib/ src",
"watch:build:main": "npm run build:main -- --watch",
"build:umd": "webpack --output-library-target umd --output-library aphrodite --output-filename aphrodite.umd.js --devtool source-map",
"watch:build:umd": "npm run build:umd -- --watch",
"build:umdmin": "webpack --output-library-target umd --output-library aphrodite --output-filename aphrodite.umd.min.js -p --devtool source-map",
"watch:build:umdmin": "npm run build:umdmin -- --watch",
"build:commonjs": "webpack --output-library-target commonjs2 --output-filename aphrodite.js",
"watch:build:commonjs": "npm run build:commonjs -- --watch",
"preversion": "npm test",
"version": "npm run build && git add dist"
},
"repository": {
"type": "git",
"url": "https://github.com/Khan/aphrodite.git"
},
"author": "Jamie Wong",
"license": "MIT",
"bugs": {
"url": "https://github.com/Khan/aphrodite/issues"
},
"homepage": "https://github.com/Khan/aphrodite",
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.25",
"babel-loader": "^5.3.2",
"chai": "^3.3.0",
"jsdom": "^6.5.1",
"mocha": "^2.3.3",
"npm-run-all": "^1.7.0",
"nyc": "^6.4.4",
"rimraf": "^2.5.2",
"webpack": "^1.12.2"
},
"dependencies": {
"asap": "^2.0.3",
"inline-style-prefixer": "^2.0.0"
},
"tonicExampleFilename": "examples/runkit.js"
}