-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.26 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
{
"name": "sans-sel",
"version": "1.0.0-beta.6",
"license": "ISC",
"author": "Benoît Zugmeyer",
"description": "Write your components styles in JavaScript, without selectors.",
"repository": "https://github.com/BenoitZugmeyer/sans-sel",
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.6.0",
"eslint": "^3.10.0",
"eslint-config-benoitz": "^1.0.0",
"jest": "^20.0.4",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.4.0",
"uglify-js": "^3.0.15"
},
"scripts": {
"prepublish": "npm run dist && npm run dev",
"dist": "mkdir -p dist && rollup -c | sed 's/process\\.env\\.NODE_ENV !== \"production\"/false/' | uglifyjs -c -m > dist/sansSel.min.js",
"dev": " mkdir -p dist && rollup -c | sed 's/process\\.env\\.NODE_ENV !== \"production\"/true/' > dist/sansSel.js",
"test": "jest",
"lint": "eslint ."
},
"main": "./dist/sansSel",
"jsnext:main": "./src/sansSel.js",
"module": "./src/sansSel.js",
"files": [
"dist/sansSel.js",
"dist/sansSel.min.js",
"src/*"
],
"jest": {
"globals": {
"__DEV__": true
},
"testPathIgnorePatterns": [
"/node_modules/",
"/_\\w+\\.js"
]
},
"dependencies": {}
}